home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / MKDIR.HLP < prev    next >
Text File  |  1985-09-10  |  2KB  |  47 lines

  1. -----------------------  MKDIR  - Internal DOS Command  ------------------------
  2.  
  3. MKDIR creates a subdirectory.
  4.  
  5. FORMAT:   MKDIR [d:]path    or    MD [d:]path
  6.  
  7. REMARKS:
  8.  
  9.    d:   - the drive of the disk where the subdirectory is to be created.  If
  10.           omitted, the default drive is assumed.
  11.    path - the directory path of the new subdirectory.  If path designation does
  12.           not begin at the root level then the subdirectory is created in the
  13.           current directory.  The last directory in the path is the name of the
  14.           subdirectory to be created.
  15.  
  16.    You may have as many subdirectories as you wish, subject to:
  17.        1. The limitation of available disk space.
  18.        2. The maximum length of the path (including the "\" characters) from the
  19.           root directory to any subdirectory is 63 characters.
  20.  
  21.    When a subdirectory is created, DOS puts two files "." and ".." in its
  22.    directory.  These files cannot be erased.  The "." file identifies the
  23.    subdirectory to DOS.  The ".." file identifies the "parent" directory (the
  24.    directory that this subdirectory lies within).
  25.  
  26. EXAMPLES:
  27.  
  28. Create a subdirectory named BUDGET in the root directory of the default drive:
  29.  
  30.           MKDIR \BUDGET
  31.  
  32.  
  33. Create a subdirectory named DATA in the directory BUDGET of the default drive.
  34. BUDGET is a subdirectory of the root directory:
  35.  
  36.           MKDIR \BUDGET\DATA
  37.  
  38.    Note: If the current directory is set to BUDGET, you may specify:
  39.  
  40.           MKDIR DATA
  41.  
  42.  
  43. Create a subdirectory named TEST in the root directory of drive B.  The default
  44. drive is A:
  45.  
  46.           MKDIR B:\TEST
  47.